home *** CD-ROM | disk | FTP | other *** search
- package
- {
- import flash.system.ApplicationDomain;
- import mx.core.IFlexModule;
- import mx.core.IFlexModuleFactory;
- import mx.managers.SystemManager;
-
- public class _main_mx_managers_SystemManager extends SystemManager implements IFlexModuleFactory
- {
- public function _main_mx_managers_SystemManager()
- {
- super();
- }
-
- override public function info() : Object
- {
- return {
- "currentDomain":ApplicationDomain.currentDomain,
- "fonts":{
- "Myriad Pro":{
- "regular":true,
- "bold":false,
- "italic":false,
- "boldItalic":false
- },
- "Verdana":{
- "regular":true,
- "bold":true,
- "italic":false,
- "boldItalic":false
- }
- },
- "height":"1024",
- "layout":"absolute",
- "mainClassName":"main",
- "mixins":["_main_FlexInit","_alertButtonStyleStyle","_ControlBarStyle","_ScrollBarStyle","_activeTabStyleStyle","_textAreaHScrollBarStyleStyle","_ToolTipStyle","_comboDropDownStyle","_ProgressBarStyle","_textAreaVScrollBarStyleStyle","_ContainerStyle","_globalStyle","_windowStatusStyle","_PanelStyle","_windowStylesStyle","_activeButtonStyleStyle","_errorTipStyle","_richTextEditorTextAreaStyleStyle","_CursorManagerStyle","_todayStyleStyle","_TextInputStyle","_dateFieldPopupStyle","_plainStyle","_dataGridStylesStyle","_ApplicationStyle","_TitleWindowStyle","_SWFLoaderStyle","_headerDateTextStyle","_ButtonStyle","_AlertStyle","_opaquePanelStyle","_weekDayStyleStyle","_RadioButtonStyle","_headerDragProxyStyleStyle","_views_MyPrintJobWatcherSetupUtil","_views_SplashImageWatcherSetupUtil","_views_ContentWatcherSetupUtil","_views_SpreadsTabWatcherSetupUtil","_views_ReadWatcherSetupUtil","_views_BrowseIssueTabWatcherSetupUtil","_views_SpreadWatcherSetupUtil","_views_BrowseYearTabWatcherSetupUtil"
- ,"_views_SearchTabWatcherSetupUtil","_views_PrintSelectionWatcherSetupUtil","_views_SpreadThumbWatcherSetupUtil","_views_CoverThumbWatcherSetupUtil","_views_BottomNavWatcherSetupUtil","_views_TopNavWatcherSetupUtil","_views_Groups_PageNavigationWatcherSetupUtil","_views_PresentationWatcherSetupUtil"],
- "width":"1280"
- };
- }
-
- override public function create(... rest) : Object
- {
- var _loc2_:String = null;
- var _loc3_:Class = null;
- var _loc4_:Object = null;
- if(rest.length == 0 || rest[0] is String)
- {
- _loc2_ = null;
- if(rest.length == 0)
- {
- _loc2_ = "main";
- }
- else
- {
- _loc2_ = String(rest[0]);
- }
- _loc3_ = Class(getDefinitionByName(_loc2_));
- if(_loc3_ != null)
- {
- _loc4_ = new _loc3_();
- if(_loc4_ is IFlexModule)
- {
- IFlexModule(_loc4_).moduleFactory = this;
- }
- return _loc4_;
- }
- return null;
- }
- return super.create.apply(this,rest);
- }
- }
- }
-
-